home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / iso9660 / dos / pktdrvr / sources / chrout.asm < prev    next >
Encoding:
Assembly Source File  |  1992-01-17  |  195 b   |  13 lines

  1. ;put into the public domain by Russell Nelson, nelson@crynwr.com
  2.  
  3.     public    chrout
  4. chrout:
  5.     push    ax            ;print the char in al.
  6.     push    dx
  7.     mov    dl,al
  8.     mov    ah,2
  9.     int    21h
  10.     pop    dx
  11.     pop    ax
  12.     ret
  13.